home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / topware / pspad / pspad450inst_cz.exe / {app} / Context / javascript.def < prev    next >
Text File  |  2005-01-06  |  38KB  |  1,144 lines

  1. ; Tento soubor obsahuje makra programu PSPad pro JavaScript
  2. ;
  3. ; Autor: ing. Jan Fiala pspad@wo.cz
  4. ; poslednφ revize: 14.8.2001
  5. ;
  6. ; Klicova slova a detekce prohlizece:
  7. ; Update: 28.4.2004 Karel Pavelka
  8. ;
  9. [Macro definition]
  10. ;----------------------------------------------------------------------
  11. [abs | Returns the absolute value of a number]
  12. abs(|number)
  13. [acos | Returns the arccosine of a number]
  14. acos(|number)
  15. [Add | Adds a key and item pair to a Dictionary object]
  16. Add (|key, item)
  17. [Add | Adds a new Folder to a Folders collection]
  18. Add (|folderName)
  19. [alert | alert]
  20. alert ("º|");
  21. [anchor | Places an HTML anchor with a NAME attribute around specified text in the object]
  22. anchor(|anchorString)
  23. [apply | Applies a method of an object, substituting another object for the current object]
  24. apply(|[thisObj[,argArray]])
  25. [asin | Returns the arcsine of a number]
  26. asin(|number)
  27. [atan | Returns the arctangent of a number]
  28. atan(|number)
  29. [atan2 | Returns the angle (in radians) from the X axis to a point (y,x)]
  30. atan2(|y, x)
  31. [atEnd | Returns a Boolean value indicating if the enumerator is at the end of the collection]
  32. atEnd()|
  33. [big | Places HTML <BIG> tags around text in a String object]
  34. big()|
  35. [blink | Places HTML <BLINK> tags around text in a String object]
  36. blink()|
  37. [bold | Places HTML <B> tags around text in a String object]
  38. bold()|
  39. [BuildPath | Appends a name to an existing path]
  40. BuildPath(|path, name)
  41. [call | Calls a method of an object, substituting another object for the current object]
  42. call(|[thisObj[, arg1[, arg2[,   [, argN]]]]])
  43. [ceil | Returns the smallest integer greater than or equal to its numeric argument]
  44. ceil(|number)
  45. [charAt | Returns the character at the specified index]
  46. charAt(|index)
  47. [charCodeAt | Returns an integer representing the Unicode encoding of the character at the specified location]
  48. charCodeAt(|index)
  49. [Close | Closes an open TextStream file]
  50. Close();|
  51. [compile | Compiles a regular expression into an internal format for faster execution]
  52. compile(|pattern, [flags])
  53. [concat | Returns a new array consisting of a combination of two or more arrays]
  54. concat(|[item1[, item2[, . . . [, itemN]]]])
  55. [concat | Returns a string value containing the concatenation of two or more supplied strings]
  56. concat(|[string2[, string3[, . . . [, stringN]]]])
  57. [Confirm | Confirm]
  58. Confirm ("º|");
  59. [Copy | Copies a specified file or folder from one location to another]
  60. Copy(| destination[, overwrite] );
  61. [CopyFile | Copies one or more files from one location to another]
  62. CopyFile (| source, destination[, overwrite] )
  63. [CopyFolder | Recursively copies a folder from one location to another]
  64. CopyFolder (| source, destination[, overwrite] );
  65. [cos | Returns the cosine of a number]
  66. cos(|number)
  67. [CreateFolder | Creates a folder]
  68. CreateFolder(|foldername)
  69. [CreateTextFile | Creates a specified file name and returns a TextStream object that can be used to read from or write to the file]
  70. CreateTextFile(|filename[, overwrite[, unicode]])
  71. [decodeURI | Returns the unencoded version of an encoded Uniform Resource Identifier (URI)]
  72. decodeURI(|URIstring)
  73. [decodeURIComponent | Returns the unencoded version of an encoded component of a Uniform Resource Identifier (URI)]
  74. decodeURIComponent(|encodedURIString)
  75. [Delete | Deletes a specified file or folder]
  76. Delete(| force );
  77. [DeleteFile | Deletes a specified file]
  78. DeleteFile (| filespec[, force] );
  79. [DeleteFolder | Deletes a specified folder and its contents]
  80. DeleteFolder (| folderspec[, force] );
  81. [dimensions | Returns the number of dimensions in a VBArray]
  82. dimensions()|
  83. [DriveExists | Returns True if the specified drive exists; False if it does not]
  84. DriveExists(|drivespec)
  85. [encodeURIComponent | Encodes a text string as a valid component of a Uniform Resource Identifier (URI)]
  86. encodeURIComponent(|encodedURIString)
  87. [escape | Encodes String objects so they can be read on all computers]
  88. escape(|charString)
  89. [eval | Evaluates JScript code and executes it]
  90. eval(|codeString)
  91. [exec | Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search]
  92. exec(|str)
  93. [Exists | Returns true if a specified key exists in the Dictionary object, false if it does not]
  94. Exists(|key)
  95. [exp | Returns e (the base of natural logarithms) raised to a power]
  96. exp(|number)
  97. [encodeURI | Encodes a text string as a valid Uniform Resource Identifier (URI]
  98. encodeURI(|URIString)
  99. [FileExists | Returns True if a specified file exists; False if it does not]
  100. FileExists(|filespec)
  101. [fixed | Places HTML <TT> tags around text in a String object]
  102. fixed()|
  103. [floor | Returns the greatest integer less than or equal to its numeric argument]
  104. floor(|number)
  105. [FolderExists | Returns True if a specified folder exists; False if it does not]
  106. FolderExists(|folderspec)
  107. [fontcolor | Places an HTML <FONT> tag with the COLOR attribute around the text in a String object]
  108. fontcolor(|colorVal)
  109. [fontsize | Places an HTML <FONT> tag with the SIZE attribute around the text in a String object]
  110. fontsize(|intSize)
  111. [fromCharCode | Returns a string from a number of Unicode character values]
  112. fromCharCode(|[code1[, code2[, ...[, codeN]]]])
  113. [GetAbsolutePathName | Returns a complete and unambiguous path from a provided path specification]
  114. GetAbsolutePathName(|pathspec)
  115. [GetBaseName | Returns a string containing the base name of the last component, less any file extension, in a path]
  116. GetBaseName(|path)
  117. [getDate | Returns the day of the month value in a Date object using local time]
  118. getDate()|
  119. [getDay | Returns the day of the week value in a Date object using local time]
  120. getDay()|
  121. [GetDrive | Returns a Drive object corresponding to the drive in a specified path]
  122. GetDrive (| drivespec );
  123. [GetDriveName | Returns a string containing the name of the drive for a specified path]
  124. GetDriveName(|path)
  125. [GetExtensionName | Returns a string containing the extension name for the last component in a path]
  126. GetExtensionName(|path)
  127. [GetFile | Returns a File object corresponding to the file in a specified path]
  128. GetFile(|filespec)
  129. [GetFileName | Returns the last component of specified path that is not part of the drive specification]
  130. GetFileName(|pathspec)
  131. [getFileVersion | Returns the version number of a specified file]
  132. GetFileVersion(|pathspec)
  133. [GetFolder | Returns a Folder object corresponding to the folder in a specified path]
  134. GetFolder(|folderspec)
  135. [getFullYear | Returns the year value in the Date object using local time]
  136. getFullYear()|
  137. [getHours | Returns the hours value in a Date object using local time]
  138. getHours()|
  139. [getItem | Returns the item at the specified location]
  140. getItem(|dimension1[, dimension2, ...], dimensionN)
  141. [getMilliseconds | Returns the milliseconds value in a Date object using local time]
  142. getMilliseconds()|
  143. [getMinutes | Returns the minutes value in a Date object using local time]
  144. getMinutes()|
  145. [getMonth | Returns the month value in the Date object using local time]
  146. getMonth()|
  147. [GetParentFolderName | Returns a string containing the name of the parent folder of the last component in a specified path]
  148. GetParentFolderName(|path)
  149. [getSeconds | Returns the seconds value in a Date object using local time]
  150. getSeconds()|
  151. [GetSpecialFolder | Returns the special folder object specified]
  152. GetSpecialFolder(|folderspec)
  153. [GetTempName | Returns a randomly generated temporary file or folder name that is useful for performing operations that require a temporary file or folder]
  154. GetTempName ();|
  155. [getTime | Returns the time value in a Date object]
  156. getTime()|
  157. [getTimezoneOffset | Returns the difference in minutes between the time on the host computer and Universal Coordinated Time (UTC)]
  158. getTimezoneOffset()|
  159. [getUTCDate | Returns the date in a Date object using Universal Coordinated Time (UTC)]
  160. getUTCDate()|
  161. [getUTCDay | Returns the day of the week value in a Date object using Universal Coordinated Time (UTC)]
  162. getUTCDay()|
  163. [getUTCFullYear | Returns the year value in a Date object using Universal Coordinated Time (UTC)]
  164. getUTCFullYear()|
  165. [getUTCHours | Returns the hours value in a Date object using Universal Coordinated Time (UTC)]
  166. getUTCHours()|
  167. [getUTCMilliseconds | Returns the milliseconds value in a Date object using Universal Coordinated Time (UTC)]
  168. getUTCMilliseconds()|
  169. [getUTCMinutes | Returns the minutes value in a Date object using Universal Coordinated Time (UTC)]
  170. getUTCMinutes()|
  171. [getUTCMonth | Returns the month value value in a Date object using Universal Coordinated Time (UTC)]
  172. getUTCMonth()|
  173. [getUTCSeconds | Returns the seconds value in a Date object using Universal Coordinated Time (UTC)]
  174. getUTCSeconds()|
  175. [getVarDate | Returns the VT_DATE value in a Date object]
  176. getVarDate()|
  177. [getYear | Returns the year value in a Date object]
  178. getYear()|
  179. [hasOwnProperty | Returns a Boolean value indicating whether an object has a property with the specified name]
  180. hasOwnProperty(|proName)
  181. [indexOf | Returns the character position where the first occurrence of a substring occurs within a String object]
  182. indexOf(|subString[, startIndex])
  183. [isFinite | Returns a Boolean value that indicates if a supplied number is finite]
  184. isFinite(|number)
  185. [isNaN | Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number)]
  186. isNaN(|numValue)
  187. [isPrototypeOf | Returns a Boolean value indicating whether an object exists in another object's prototype chain]
  188. isPrototypeOf(|object2)
  189. [italics | Places HTML <I> tags around text in a String object]
  190. italics(| )
  191. [item | Returns the current item in the collection]
  192. item()|
  193. [Items | Returns an array containing all the items in a Dictionary object]
  194. Items()|
  195. [join | Returns a string value consisting of all the elements of an array concatenated together and separated by the specified separator character]
  196. join(|separator)
  197. [Keys | Returns an array containing all existing keys in a Dictionary object]
  198. Keys()|
  199. [lastIndexOf | Returns the last occurrence of a substring within a String object]
  200. lastIndexOf(|substring[, startindex])
  201. [lbound | Returns the lowest index value used in the specified dimension of a VBArray]
  202. lbound(|dimension)
  203. [link | Places an HTML anchor with an HREF attribute around the text in a String object]
  204. link(|linkstring)
  205. [localeCompare | Returns a value indicating whether two strings are equivalent in the current locale]
  206. localeCompare(|stringExp)
  207. [log | Returns the natural logarithm of a number]
  208. log(|number)
  209. [match | Executes a search on a string using a regular expression pattern, and returns an array containing the results of that search]
  210. match(|rgExp)
  211. [max | Returns the greater of zero or more supplied numeric expressions]
  212. max(|[number1[, number2[. . . [, numberN]]]])
  213. [min | Returns the lesser of zero or more supplied numeric expressions]
  214. min(|[number1[, number2[. . . [,numberN]]]])
  215. [Move | Moves a specified file or folder from one location to another]
  216. Move(| destination );
  217. [MoveFile | Moves one or more files from one location to another]
  218. MoveFile (| source, destination );
  219. [moveFirst | Resets the current item in the collection to the first item]
  220. moveFirst(| )
  221. [MoveFolder | Moves one or more folders from one location to another]
  222. MoveFolder (| source, destination );
  223. [moveNext | Moves the current item to the next item in the collection]
  224. moveNext()|
  225. [OpenAsTextStream | Opens a specified file and returns a TextStream object that can be used to read from, write to, or append to the file]
  226. OpenAsTextStream(|[iomode, [format]])
  227. [OpenTextFile | Opens a specified file and returns a TextStream object that can be used to read from, write to, or append to the file]
  228. OpenTextFile(|filename[, iomode[, create[, format]]])
  229. [parse | Parses a string containing a date, and returns the number of milliseconds between that date and midnight, January 1, 1970]
  230. parse(|dateVal)
  231. [parseFloat | Returns a floating-point number converted from a string]
  232. parseFloat(|numString)
  233. [parseInt | Returns an integer converted from a string]
  234. parseInt(|numString, [radix])
  235. [pop | Removes the last element from an array and returns it]
  236. pop()|
  237. [pow | Returns the value of a base expression taken to a specified power]
  238. pow(|base, exponent)
  239. [Prompt | Prompt]
  240. Prompt ("º|");
  241. [push | Appends new elements to an array, and returns the new length of the array]
  242. push(|[item1 [item2 [. . . [itemN ]]]])
  243. [random | Returns a pseudorandom number between 0 and 1]
  244. random(| )
  245. [Read | Reads a specified number of characters from a TextStream file and returns the resulting string]
  246. Read(|characters)
  247. [ReadAll | Reads an entire TextStream file and returns the resulting string]
  248. ReadAll();|
  249. [ReadLine | Reads an entire line (up to, but not including, the newline character) from a TextStream file and returns the resulting string]
  250. ReadLine()|
  251. [Remove | Removes a key, item pair from a Dictionary object]
  252. Remove(|key)
  253. [RemoveAll | The RemoveAll method removes all key, item pairs from a Dictionary object]
  254. RemoveAll()|
  255. [replace | Returns a copy of a string with text replaced using a regular expression or search string]
  256. replace(|rgExp, replaceText)
  257. [reverse | Returns an Array object with the elements reversed]
  258. reverse(| )
  259. [round | Returns a supplied numeric expression rounded to the nearest integer]
  260. round(|number)
  261. [search | Returns the position of the first substring match in a regular expression search]
  262. search(|rgExp)
  263. [setDate | Sets the numeric date of the Date object using local time]
  264. setDate(|numDate)
  265. [setFullYear | Sets the year value in the Date object using local time]
  266. setFullYear(|numYear[, numMonth[, numDate]])
  267. [setHours | Sets the hour value in the Date object using local time]
  268. setHours(|numHours[, numMin[, numSec[, numMilli]]])
  269. [setMilliseconds | Sets the milliseconds value in the Date object using local time]
  270. setMilliseconds(|numMilli)
  271. [setMinutes | Sets the minutes value in the Date object using local time]
  272. setMinutes(|numMinutes[, numSeconds[, numMilli]])
  273. [setMonth | Sets the month value in the Date object using local time]
  274. setMonth(|numMonth[, dateVal])
  275. [setSeconds | Sets the seconds value in the Date object using local time]
  276. setSeconds(|numSeconds[, numMilli])
  277. [setTime | Sets the date and time value in the Date object]
  278. setTime(|milliseconds)
  279. [setUTCDate | Sets the numeric date in the Date object using Universal Coordinated Time (UTC)]
  280. setUTCDate(|numDate)
  281. [setUTCFullYear | Sets the year value in the Date object using Universal Coordinated Time (UTC)]
  282. setUTCFullYear(|numYear[, numMonth[, numDate]])
  283. [setUTCHours | Sets the hours value in the Date object using Universal Coordinated Time (UTC)]
  284. setUTCHours(|numHours[, numMin[, numSec[, numMilli]]])
  285. [setUTCMilliseconds | Sets the milliseconds value in the Date object using Universal Coordinated Time (UTC)]
  286. setUTCMilliseconds(|numMilli)
  287. [setUTCMinutes | Sets the minutes value in the Date object using Universal Coordinated Time (UTC)]
  288. setUTCMinutes(|numMinutes[, numSeconds[, numMilli]])
  289. [setUTCMonth | Sets the month value in the Date object using Universal Coordinated Time (UTC)]
  290. setUTCMonth(|numMonth[, dateVal])
  291. [setUTCSeconds | Sets the seconds value in the Date object using Universal Coordinated Time (UTC)]
  292. setUTCSeconds(|numSeconds[, numMilli])
  293. [setYear | Sets the year value in the Date object]
  294. setYear(|numYear)
  295. [shift | Removes the first element from an array and returns it]
  296. shift()|
  297. [sin | Returns the sine of a number]
  298. sin(|number)
  299. [Skip | Skips a specified number of characters when reading a TextStream file]
  300. Skip(|characters)
  301. [SkipLine | Skips the next line when reading a TextStream file]
  302. SkipLine()|
  303. [slice | Returns a section of an array]
  304. slice(|start, [end])
  305. [slice | Returns a section of a string]
  306. slice(|start, [end])
  307. [small | Places HTML <SMALL> tags around text in a String object]
  308. small(| )
  309. [sort | Returns an Array object with the elements sorted]
  310. sort(|sortFunction)
  311. [splice | Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements]
  312. splice(|start, deleteCount, [item1[, item2[, . . . [,itemN]]]])
  313. [split | Returns the array of strings that results when a string is separated into substrings]
  314. split(|[separator[, limit]])
  315. [sqrt | Returns the square root of a number]
  316. sqrt(|number)
  317. [strike | Places HTML <STRIKE> tags around text in a String object]
  318. strike(| )
  319. [sub | Places HTML <SUB> tags around text in a String object]
  320. sub(| )
  321. [substr | Returns a substring beginning at a specified location and having a specified length]
  322. substr(|start [, length ])
  323. [substring | Returns the substring at the specified location within a String object]
  324. substring(|start, end)
  325. [sup | Places HTML <SUP> tags around text in a String object]
  326. sup(| )
  327. [tan | Returns the tangent of a number]
  328. tan(|number)
  329. [test | Returns a Boolean value that indicates whether or not a pattern exists in a searched string]
  330. test(|str)
  331. [toArray | Returns a standard JScript array converted from a VBArray]
  332. toArray(| )
  333. [toDateString | Returns a date as a string value]
  334. toDateString()|
  335. [toExponential | Returns a string containing a number represented in exponential notation]
  336. toExponential(|[fractionDigits])
  337. [toFixed | Returns a string representing a number in fixed-point notation]
  338. toFixed(|[fractionDigits])
  339. [toGMTString | Returns a date converted to a string using Greenwich Mean Time(GMT)]
  340. toGMTString()|
  341. [toLocaleDateString | Returns a date as a string value appropriate to the host environmentÆs current locale]
  342. toLocaleDateString()|
  343. [toLocaleLowerCase | Returns a string where all alphabetic characters have been converted to lowercase, taking into account the host environment's current locale]
  344. tolocaleLowerCase()|
  345. [toLocaleString | Returns a date converted to a string using the current locale]
  346. toLocaleString()|
  347. [toLocaleTimeString | Returns a time as a string value appropriate to the host environmentÆs current locale]
  348. toLocaleTimeString()|
  349. [toLocaleUpperCase | Returns a string where all alphabetic characters have been converted to uppercase, taking into account the host environment's current locale]
  350. tolocaleUpperCase()|
  351. [toLowerCase | Returns a string where all alphabetic characters have been converted to lowercase]
  352. toLowerCase(| )
  353. [toPrecision | Returns a string containing a number represented either in exponential or fixed-point notation with a specified number of digits]
  354. toPrecision (|[precision])
  355. [toString | Returns a string representation of an object]
  356. toString(|[radix])
  357. [toTimeString | Returns a time as a string value]
  358. toTimeString()|
  359. [toUpperCase | Returns a string where all alphabetic characters have been converted to uppercase]
  360. toUpperCase(| )
  361. [toUTCString | Returns a date converted to a string using Universal Coordinated Time (UTC)]
  362. toUTCString()|
  363. [ubound | Returns the highest index value used in the specified dimension of the VBArray]
  364. ubound(|dimension)
  365. [unescape | Decodes String objects encoded with the escape method]
  366. unescape(|charString)
  367. [unshift | Returns an array with specified elements inserted at the beginning]
  368. unshift(|[item1[, item2 [, . . . [, itemN]]]])
  369. [UTC | Returns the number of milliseconds between midnight, January 1, 1970 Universal Coordinated Time (UTC) (or GMT) and the supplied date]
  370. UTC(|year, month, day[, hours[, minutes[, seconds[,ms]]]])
  371. [valueOf | Returns the primitive value of the specified object]
  372. valueOf(| )
  373. [Write | Writes a specified string to a TextStream file]
  374. Write(|string)
  375. [WriteBlankLines | Writes a specified number of newline characters to a TextStream file]
  376. WriteBlankLines(|lines)
  377. [WriteLine | Writes a specified string and newline character to a TextStream file]
  378. WriteLine(|[string])
  379. [arguments | Returns the arguments object for the currently executing Function object]
  380. arguments|
  381. [AtEndOfLine | Returns true if the file pointer is positioned immediately before the end-of-line marker in a TextStream file; false if it is not. Read-only]
  382. AtEndOfLine|
  383. [AtEndOfStream | Returns true if the file pointer is at the end of a TextStream file; false if it is not. Read-only]
  384. AtEndOfStream|
  385. [Attributes | Sets or returns the attributes of files or folders. Read/write or read-only, depending on the attribute]
  386. Attributes |[= newattributes]
  387. [AvailableSpace | Returns the amount of space available to a user on the specified drive or network share]
  388. AvailableSpace|
  389. [callee | Returns the Function object being executed, that is the body text of the specified Function object]
  390. ]arguments.callee|
  391. [caller | Returns a reference to the function that invoked the current function]
  392. caller|
  393. [Column | Read-only property that returns the column number of the current character position in a TextStream file]
  394. Column|
  395. [CompareMode | Sets and returns the comparison mode for comparing string keys in a Dictionary object]
  396. CompareMode|[ = compare]
  397. [constructor | Specifies the function that creates an object]
  398. constructor|
  399. [Count | Returns the number of items in a collection or Dictionary object. Read-only]
  400. Count|
  401. [DateCreated | Returns the date and time that the specified file or folder was created. Read-only]
  402. DateCreated|
  403. [DateLastAccessed | Returns the date and time that the specified file or folder was last accessed. Read-only]
  404. DateLastAccessed|
  405. [DateLastModified | Returns the date and time that the specified file or folder was last modified. Read-only]
  406. DateLastModified|
  407. [description | Returns or sets the descriptive string associated with a specific error]
  408. description |[= stringExpression]
  409. [Drive | Returns the drive letter of the drive on which the specified file or folder resides. Read-only]
  410. Drive|
  411. [DriveLetter | Returns the drive letter of a physical local drive or a network share. Read-only]
  412. DriveLetter|
  413. [Drives | Returns a Drives collection consisting of all Drive objects available on the local machine]
  414. Drives|
  415. [DriveType | Returns a value indicating the type of a specified drive]
  416. DriveType|
  417. [E | Returns Euler's constant, the base of natural logarithms. The E property is approximately equal to 2.718]
  418. E|
  419. [Files | Returns a Files collection consisting of all File objects contained in the specified folder, including those with hidden and system file attributes set]
  420. Files|
  421. [FileSystem | Returns the type of file system in use for the specified drive]
  422. FileSystem|
  423. [FreeSpace | Returns the amount of free space available to a user on the specified drive or network share. Read-only]
  424. FreeSpace|
  425. [global | Returns a Boolean value indicating the state of the global flag (g) used with a regular expression. Default is false. Read-only]
  426. global|
  427. [ignoreCase | Returns a Boolean value indicating the state of the ignoreCase flag (i) used with a regular expression. Default is false. Read-only]
  428. ignoreCase|
  429. [index | Returns the character position where the first successful match begins in a searched string. Read-only]
  430. index|
  431. [Infinity | Returns an initial value of Number.POSITIVE_INFINITY]
  432. Infinity|
  433. [input | Returns the string against which a regular expression search was performed. Read-only]
  434. input|
  435. [IsReady | Returns True if the specified drive is ready; False if it is not]
  436. IsReady|
  437. [IsRootFolder | Returns True if the specified folder is the root folder; False if it is not]
  438. IsRootFolder|
  439. [Item | Sets or returns an item for a specified key in a Dictionary object. For collections, returns an item based on the specified key. Read/write]
  440. Item(|key)[ = newitem]
  441. [Key | Sets a key in a Dictionary object]
  442. Key(|key) = newkey
  443. [lastIndex | Returns the character position where  the next match begins in a searched string]
  444. lastIndex|
  445. [lastMatch | Returns the last matched characters from any regular expression search. Read-only]
  446. lastMatch|
  447. [lastParen | Returns the last parenthesized submatch from any regular expression search, if any. Read-only]
  448. lastParen|
  449. [leftContext | Returns the characters from the beginning of a searched string up to the position before the beginning of the last match. Read-only]
  450. leftContext|
  451. [length | Returns the actual number of arguments passed to a function by the caller]
  452. ]arguments.length|
  453. [length | Returns an integer value one higher than the highest element defined in an array]
  454. length|
  455. [length | Returns the number of arguments defined for a function]
  456. length|
  457. [length | Returns the length of a String object]
  458. length|
  459. [Line | Read-only property that returns the current line number in a TextStream file]
  460. Line|
  461. [LN10 | Returns the natural logarithm of 10]
  462. LN10|
  463. [LN2 | Returns the natural logarithm of 2]
  464. LN2|
  465. [LOG10E | Returns the base-10 logarithm of e, Euler's constant]
  466. LOG10E|
  467. [LOG2E | Returns the base-2 logarithm of e, Euler's constant]
  468. LOG2E|
  469. [MAX_VALUE | Returns the largest number representable in JScript. Equal to approximately 1.79E+308]
  470. MAX_VALUE|
  471. [message | Returns an error message string]
  472. message|
  473. [MIN_VALUE | Returns the number closest to zero representable in JScript. Equal to approximately 5.00E-324]
  474. MIN_VALUE|
  475. [multiline | Returns a Boolean value indicating the state of the multiline flag (m) used with a regular expression. Default is false. Read-only]
  476. multiline|
  477. [Name | Sets or returns the name of a specified file or folder. Read/write]
  478. Name |[= newname]
  479. [name | Returns the name of an error]
  480. name|
  481. [NaN | Returns the special value NaN indicating that an expression is not a number]
  482. NaN|
  483. [NaN | A special value that indicates an arithmetic expression returned a value that was not a number]
  484. NaN|
  485. [NEGATIVE_INFINITY | Returns a value more negative than the largest negative number (-Number.MAX_VALUE) representable in JScript]
  486. NEGATIVE_INFINITY|
  487. [number | Returns or sets the numeric value associated with a specific error. The Error object's default property is number]
  488. number |[= errorNumber]
  489. [ParentFolder | Returns the folder object for the parent of the specified file or folder. Read-only]
  490. ParentFolder|
  491. [Path | Returns the path for a specified file, folder, or drive]
  492. Path|
  493. [PI | Returns the ratio of the circumference of a circle to its diameter, approximately 3.141592653589793]
  494. PI|
  495. [POSITIVE_INFINITY | Returns a value larger than the largest number (Number.MAX_VALUE) that can be represented in JScript]
  496. POSITIVE_INFINITY|
  497. [propertyIsEnumerable | Returns a Boolean value indicating whether a specified property is part of an object and if it is enumerable]
  498. propertyIsEnumerable(|proName)
  499. [prototype | Returns a reference to the prototype for a class of objects]
  500. prototype|
  501. [rightContext | Returns the characters from the position following the last match to the end of the searched string. Read-only]
  502. rightContext|
  503. [RootFolder | Returns a Folder object representing the root folder of a specified drive. Read-only]
  504. RootFolder|
  505. [SerialNumber | Returns the decimal serial number used to uniquely identify a disk volume]
  506. SerialNumber|
  507. [ShareName | Returns the network share name for a specified drive]
  508. ShareName|
  509. [ShortName | Returns the short name used by programs that require the earlier 8.3 naming convention]
  510. ShortName|
  511. [ShortPath | Returns the short path used by programs that require the earlier 8.3 file naming convention]
  512. ShortPath|
  513. [Size | For files, returns the size, in bytes, of the specified file. For folders, returns the size, in bytes, of all files and subfolders contained in the folder]
  514. Size|
  515. [source | Returns a copy of the text of the regular expression pattern. Read-only]
  516. source|
  517. [SQRT1_2 | Returns he square root of 0.5, or one divided by the square root of 2]
  518. SQRT1_2|
  519. [SQRT2 | Returns the square root of 2]
  520. SQRT2|
  521. [SubFolders | Returns a Folders collection consisting of all folders contained in a specified folder, including those with hidden and system file attributes set]
  522. SubFolders|
  523. [TotalSize | Returns the total space, in bytes, of a drive or network share]
  524. TotalSize|
  525. [Type | Returns information about the type of a file or folder. For example, for files ending in .TXT, "Text Document" is returned]
  526. Type|
  527. [undefined | Returns an initial value of undefined]
  528. undefined|
  529. [VolumeName | Sets or returns the volume name of the specified drive. Read/write]
  530. VolumeName |[= newname]
  531. ;
  532. ;
  533. ;
  534. [IE5 | Detection MSIE 5.0]
  535. var ie5 = document.all && !document.fireEvent && !window.opera;
  536. [IE55 | Detection MSIE 5.5]
  537. var ie55 = document.all && document.fireEvent && !document.createComment;
  538. [IE6 | Detection MSIE 6.0]
  539. var ie6 = document.all && document.fireEvent && document.createComment;
  540. [NS6 | Detection Netscape 6+]
  541. var ns6 = !document.all && document.getElementById;
  542. [opera7 | Detection Opera 7]
  543. var opera7 = window.opera && document.createComment;
  544. ;
  545. [Keywords]
  546. abs()
  547. abstract
  548. acceptCharset
  549. acos()
  550. action
  551. Add()
  552. alert()
  553. all
  554. anchor()
  555. Arrays.concat()
  556. Arrays.join()
  557. Arrays.length
  558. Arrays.reverse()
  559. Arrays.slice()
  560. Arrays.sort()
  561. Arrays.toString()
  562. Arrays.valueOf()
  563. attributes
  564. autocomplete
  565. begin
  566. big()
  567. blink()
  568. blur()
  569. bold()
  570. boolean
  571. border
  572. byte
  573. case
  574. catch
  575. class
  576. clearTimeout()
  577. complete
  578. confirm()
  579. const
  580. continue
  581. createComment
  582. Date.getDate()
  583. Date.getDay()
  584. Date.getFullYear()
  585. Date.getHours()
  586. Date.getMinutes()
  587. Date.getMonth()
  588. Date.getSeconds()
  589. Date.getTime()
  590. Date.getTimeZoneOffset()
  591. Date.getYear()
  592. Date.parse()
  593. Date.setDate()
  594. Date.setHours()
  595. Date.setMinutes()
  596. Date.setMonth()
  597. Date.setSeconds()
  598. Date.setTime()
  599. Date.setYear()
  600. Date.toGMTString()
  601. Date.toLocalString()
  602. default
  603. delete
  604. description
  605. do
  606. document.alinkColor
  607. document.anchors
  608. document.anchors[]
  609. document.applets[]
  610. document.arguments[]
  611. document.bgColor
  612. document.clear()
  613. document.close()
  614. document.cookie
  615. document.elements[]
  616. document.embeds
  617. document.embeds[]
  618. document.fgColor
  619. document.forms
  620. document.forms[]
  621. document.frames[]
  622. document.getselection()
  623. document.history[]
  624. document.images[]
  625. document.lastModified
  626. document.linkColor
  627. document.links
  628. document.links[]
  629. document.loadedDate
  630. document.location
  631. document.onAfterUpdate
  632. document.onBeforeUpdate
  633. document.onClick
  634. document.onDblClick
  635. document.onDragStart
  636. document.onErrorUpdate
  637. document.onHelp
  638. document.onKeyDown
  639. document.onKeyPress
  640. document.onKeyUp
  641. document.onLoad
  642. document.onMouseDown
  643. document.onMouseMove
  644. document.onMouseOut
  645. document.onMouseOver
  646. document.onMouseUp
  647. document.onReadyStateChange
  648. document.onRowEnter
  649. document.onRowExit
  650. document.onSelectStart
  651. document.onUnLoad
  652. document.open()
  653. document.options[]
  654. document.plugins[]
  655. document.referrer
  656. document.title
  657. document.userAgent
  658. document.vlinkColor
  659. document.write()
  660. document.writeln()
  661. double
  662. elements
  663. elements.blur()
  664. elements.click()
  665. elements.defaultChecked
  666. elements.defaultSelected
  667. elements.defaultValue
  668. elements.focus()
  669. elements.form
  670. elements.checked
  671. elements.length
  672. elements.name
  673. elements.select()
  674. elements.selected
  675. elements.selectedIndex
  676. elements.text
  677. elements.type
  678. elements.value
  679. else
  680. encoding
  681. escape()
  682. eval()
  683. extends
  684. false
  685. filename
  686. final
  687. finally
  688. fireEvent
  689. fixed()
  690. float
  691. focus()
  692. fontcolor()
  693. fontsize()
  694. for
  695. Form.action
  696. Form.elements.blur()
  697. Form.elements.click()
  698. Form.elements.defaultChecked
  699. Form.elements.defaultSelected
  700. Form.elements.defaultValue
  701. Form.elements.focus()
  702. Form.elements.form
  703. Form.elements.checked
  704. Form.elements.length
  705. Form.elements.name
  706. Form.elements.select()
  707. Form.elements.selected
  708. Form.elements.selectedIndex
  709. Form.elements.text
  710. Form.elements.type
  711. Form.elements.value
  712. Form.encoding
  713. Form.length
  714. Form.method
  715. Form.name
  716. Form.parent
  717. Form.reset()
  718. Form.submit()
  719. Form.target
  720. frames
  721. Frames.length
  722. function
  723. Function.arguments[]
  724. Function.caller
  725. getDate()
  726. getDay()
  727. getElementById
  728. getHours()
  729. getMinutes()
  730. getMonth()
  731. getSeconds()
  732. getTime()
  733. getTimezoneOffset()
  734. getYear()
  735. goto
  736. hash
  737. height
  738. history.back()
  739. history.current
  740. history.forward()
  741. history.go()
  742. history.length
  743. host
  744. hostname
  745. href
  746. hspace
  747. char
  748. charAt()
  749. if
  750. images.border
  751. images.complete
  752. images.height
  753. images.hspace
  754. images.length
  755. images.lowsrc
  756. images.name
  757. images.src
  758. images.vspace
  759. images.width
  760. implements
  761. import
  762. in
  763. indexOf()
  764. instanceof
  765. int
  766. interface
  767. italics()
  768. lastIndexOf()
  769. lastIndexOf(,)
  770. length
  771. link()
  772. location.assign()
  773. location.hash
  774. location.host
  775. location.hostname
  776. location.href
  777. location.pathname
  778. location.port
  779. location.protocol
  780. location.reload()
  781. location.replace()
  782. location.search
  783. location.toString()
  784. long
  785. lowsrc
  786. Math.abs()
  787. Math.acos()
  788. Math.asin()
  789. Math.atan()
  790. Math.ceil()
  791. Math.cos()
  792. Math.e
  793. Math.exp()
  794. Math.floor()
  795. Math.ln10
  796. Math.ln2
  797. Math.LN32
  798. Math.LN4
  799. Math.log()
  800. Math.log10e
  801. Math.log2e
  802. Math.LOG32E
  803. Math.LOG4E
  804. Math.max()
  805. Math.min()
  806. Math.pi
  807. Math.pow()
  808. Math.random()
  809. Math.round()
  810. Math.sin()
  811. Math.sqrt()
  812. Math.sqrt1_2
  813. Math.sqrt2
  814. Math.SQRT3_4
  815. Math.SQRT4
  816. Math.tan()
  817. method
  818. name
  819. native
  820. navigator.appCodeName
  821. navigator.appName
  822. navigator.appVersion
  823. navigator.javaEnabled()
  824. navigator.mimeTypes
  825. navigator.mimeTypes.description
  826. navigator.mimeTypes.enabledPlugin
  827. navigator.mimeTypes.length
  828. navigator.mimeTypes.suffixes
  829. navigator.mimeTypes.type
  830. navigator.mimeTypes[]
  831. navigator.plugins
  832. navigator.plugins.description
  833. navigator.plugins.filename
  834. navigator.plugins.length
  835. navigator.plugins.name
  836. navigator.plugins[]
  837. navigator.preference
  838. navigator.userAgent
  839. new
  840. null
  841. number()
  842. Number.MAX_VALUE
  843. Number.MIN_VALUE
  844. Number.NaN
  845. Number.NEGATIVE_INFINITY
  846. Number.POSITIVE_INFINITY
  847. onAbort
  848. onabort=""
  849. onactivate=""
  850. onafterprint=""
  851. onAfterUpdate
  852. onafterupdate=""
  853. onback=""
  854. onbeforeactivate=""
  855. onbeforecopy=""
  856. onbeforecut=""
  857. onbeforedeactivate=""
  858. onbeforeeditfocus=""
  859. onbeforeprint=""
  860. onbeforerepaste=""
  861. onbeforeunload=""
  862. onBeforeUpdate
  863. onbeforeupdate=""
  864. onBlur
  865. onblur=""
  866. onbounce=""
  867. onClick
  868. onclick=""
  869. oncontextmenu=""
  870. oncontrolselect=""
  871. oncopy=""
  872. oncut=""
  873. onDataAvailable
  874. ondataavailable=""
  875. onDataSetComplete
  876. ondatasetcomplete=""
  877. ondatasetchange=""
  878. onDataSetChanged
  879. onDblClick
  880. ondblclick=""
  881. ondeactivate=""
  882. ondrag=""
  883. ondragend=""
  884. ondragenter=""
  885. ondragleave=""
  886. ondragover=""
  887. onDragStart
  888. ondragstart=""
  889. ondrop=""
  890. onError
  891. onerror=""
  892. onErrorUpdate
  893. onerrorupdate=""
  894. onFilterChange
  895. onfilterchange=""
  896. onfinish=""
  897. onFocus
  898. onfocus=""
  899. onfocusin=""
  900. onfocusout=""
  901. onforward=""
  902. onHelp
  903. onhelp=""
  904. onchange=""
  905. onKeyDown
  906. onkeydown=""
  907. onKeyPress
  908. onkeypress=""
  909. onKeyUp
  910. onkeyup=""
  911. onLoad
  912. onload=""
  913. onlosecapture=""
  914. onMouseDown
  915. onmousedown=""
  916. onmousedrag=""
  917. onmouseenter=""
  918. onmouseleave=""
  919. onMouseMove
  920. onmousemove=""
  921. onMouseOut
  922. onmouseout=""
  923. onMouseOver
  924. onmouseover=""
  925. onMouseUp
  926. onmouseup=""
  927. onmousewheel=""
  928. onmove=""
  929. onmoveend=""
  930. onmovestart=""
  931. onpaste=""
  932. onpropertychange=""
  933. onReadyStateChange
  934. onreadystatechange=""
  935. onReset
  936. onreset=""
  937. onResize
  938. onresize=""
  939. onresizeend=""
  940. onresizestart=""
  941. onroweenter=""
  942. onroweexit=""
  943. onRowEnter
  944. onRowExit
  945. onscroll=""
  946. onselect=""
  947. onSelectStart
  948. onselectstart=""
  949. onstop=""
  950. onSubmit
  951. onsubmit=""
  952. ontimeerorror=""
  953. onunload=""
  954. package
  955. parent
  956. parse()
  957. parseFloat()
  958. parseInt()
  959. pathname
  960. port
  961. private
  962. prompt()
  963. protected
  964. protocol
  965. prototype
  966. public
  967. reset()
  968. return
  969. screen.availHeight
  970. screen.availWidth
  971. screen.colorDepth
  972. screen.height
  973. screen.pixelDepth
  974. screen.width
  975. search
  976. select()
  977. self
  978. setDate()
  979. setMinutes()
  980. setMonth()
  981. setSeconds()
  982. setTime()
  983. setTimeout()
  984. setTimeout(,)
  985. setYear()
  986. short
  987. small()
  988. split()
  989. src
  990. static
  991. strike()
  992. string()
  993. Strings.anchor()
  994. Strings.big()
  995. Strings.blink()
  996. Strings.bold()
  997. Strings.concat()
  998. Strings.fixed()
  999. Strings.fontcolor()
  1000. Strings.fontsize()
  1001. Strings.charAt()
  1002. Strings.charCodeAt()
  1003. Strings.indexOf()
  1004. Strings.italics()
  1005. Strings.lastindexOf()
  1006. Strings.length
  1007. Strings.link()
  1008. Strings.match()
  1009. Strings.replace()
  1010. Strings.search()
  1011. Strings.slice()
  1012. Strings.small()
  1013. Strings.split()
  1014. Strings.strike()
  1015. Strings.sub()
  1016. Strings.substr()
  1017. Strings.substring()
  1018. Strings.sup()
  1019. Strings.toLowerCase()
  1020. Strings.toString()
  1021. Strings.toUpperCase()
  1022. Strings.valueOf()
  1023. sub()
  1024. submit()
  1025. substring()
  1026. sup()
  1027. super
  1028. switch
  1029. synchronized
  1030. target
  1031. throw
  1032. throws
  1033. toGMTString()
  1034. toLocaleString()
  1035. toLowerCase()
  1036. toString()
  1037. toUpperCase()
  1038. transient
  1039. true
  1040. try
  1041. typeof
  1042. unEscape()
  1043. UTC()
  1044. var
  1045. void
  1046. vspace
  1047. while
  1048. width
  1049. window
  1050. window.alert()
  1051. window.back()
  1052. window.blur()
  1053. window.clearInterval()
  1054. window.clearTimeout()
  1055. window.close()
  1056. window.closed
  1057. window.confirm()
  1058. window.defaultStatus
  1059. window.directories
  1060. window.document.alinkColor
  1061. window.document.anchors[]
  1062. window.document.applets[]
  1063. window.document.arguments[]
  1064. window.document.bgColor
  1065. window.document.close()
  1066. window.document.cookie
  1067. window.document.elements[]
  1068. window.document.embeds[]
  1069. window.document.fgColor
  1070. window.document.forms[]
  1071. window.document.frames[]
  1072. window.document.getselection()
  1073. window.document.history[]
  1074. window.document.images[]
  1075. window.document.lastModified
  1076. window.document.linkColor
  1077. window.document.links[]
  1078. window.document.location
  1079. window.document.open()
  1080. window.document.options[]
  1081. window.document.plugins[]
  1082. window.document.referrer
  1083. window.document.title
  1084. window.document.vlinkColor
  1085. window.document.write()
  1086. window.document.writeln()
  1087. window.focus()
  1088. window.frames
  1089. window.frames.length
  1090. window.height
  1091. window.history.back()
  1092. window.history.forward()
  1093. window.history.go()
  1094. window.history.length
  1095. window.length
  1096. window.location.hash
  1097. window.location.host
  1098. window.location.hostname
  1099. window.location.href
  1100. window.location.pathname
  1101. window.location.port
  1102. window.location.protocol
  1103. window.location.reload()
  1104. window.location.replace()
  1105. window.location.search
  1106. window.locationbar
  1107. window.menubar
  1108. window.moveBy()
  1109. window.moveTo()
  1110. window.name
  1111. window.offscreenBuffering
  1112. window.onBeforeUnload
  1113. window.onBlur
  1114. window.onError
  1115. window.onFocus
  1116. window.onHelp
  1117. window.onLoad
  1118. window.onResize
  1119. window.onScroll
  1120. window.onUnLoad
  1121. window.open()
  1122. window.opener
  1123. window.parent
  1124. window.print()
  1125. window.prompt()
  1126. window.resizable
  1127. window.resizeBy()
  1128. window.resizeTo()
  1129. window.scroll()
  1130. window.scrollbars
  1131. window.scrollBy()
  1132. window.scrollTo()
  1133. window.self
  1134. window.setInterval()
  1135. window.setTimeout()
  1136. window.status
  1137. window.statusbar
  1138. window.titlebar
  1139. window.toolbar
  1140. window.top
  1141. window.width
  1142. window.window
  1143. with
  1144.